|
Menu location |
---|
Arch → Rebar tools |
Workbenches |
Arch |
Default shortcut |
None |
See also |
Arch Rebar |
This command is part of the Reinforcement AddOn, that you can install via menu Tools → Addons Manager |
Instrumentul Helical Rebar permite utilizatorului să creeze o armătură elicoidală în elementul de structură.
This tool is part of the Reinforcement Workbench, an external workbench that can be installed with the Addon Manager.
Task panel for the tool
See also: Arch API, Reinforcement API and FreeCAD Scripting Basics.
Instrumentul Helical Rebar poate fi utilizat în macros și de la consola Python prin utilizarea următoarei funcției:
Rebar = makeHelicalRebar(s_cover, b_cover, diameter, t_cover, pitch, structure=None, facename=None)
import FreeCAD, Draft, Arch, HelicalRebar
Circle = Draft.makeCircle(radius=250)
Structure = Arch.makeStructure(Circle)
Structure.ViewObject.Transparency = 80
FreeCAD.ActiveDocument.recompute()
Rebar = HelicalRebar.makeHelicalRebar(10, 50, 8, 50, 50, structure, "Face2")
You can change the properties of the rebar with the following function
editHelicalRebar(Rebar, s_cover, b_cover, diameter, t_cover, pitch, structure=None, facename=None)
Rebar
is a previously created HelicalRebar
object.makeHelicalRebar()
function.structure
and facename
may be omitted so that the rebar stays in the original structure.import HelicalRebar
HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100)